home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / os2 / e33el2.zip / emacs / 19.33 / lisp / scroll-bar.el < prev    next >
Lisp/Scheme  |  1996-05-27  |  9KB  |  242 lines

  1. ;;; scroll-bar.el --- window system-independent scroll bar support.
  2.  
  3. ;; Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc.
  4.  
  5. ;; Maintainer: FSF
  6. ;; Keywords: hardware
  7.  
  8. ;; This file is part of GNU Emacs.
  9.  
  10. ;; GNU Emacs is free software; you can redistribute it and/or modify
  11. ;; it under the terms of the GNU General Public License as published by
  12. ;; the Free Software Foundation; either version 2, or (at your option)
  13. ;; any later version.
  14.  
  15. ;; GNU Emacs is distributed in the hope that it will be useful,
  16. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18. ;; GNU General Public License for more details.
  19.  
  20. ;; You should have received a copy of the GNU General Public License
  21. ;; along with GNU Emacs; see the file COPYING.  If not, write to the
  22. ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  23. ;; Boston, MA 02111-1307, USA.
  24.  
  25. ;;; Commentary:
  26.  
  27. ;; Window-system-independent bindings of mouse clicks on the scroll bar.
  28. ;; Presently emulates the scroll-bar behavior of xterm.
  29.  
  30. ;;; Code:
  31.  
  32. (require 'mouse)
  33.  
  34.  
  35. ;;;; Utilities.
  36.  
  37. (defun scroll-bar-event-ratio (event)
  38.   "Given a scroll bar event EVENT, return the scroll bar position as a ratio.
  39. The value is a cons cell (PORTION . WHOLE) containing two integers
  40. whose ratio gives the event's vertical position in the scroll bar, with 0
  41. referring to the top and 1 to the bottom."
  42.   (nth 2 event))
  43.  
  44. (defun scroll-bar-scale (num-denom whole)
  45.   "Given a pair (NUM . DENOM) and WHOLE, return (/ (* NUM WHOLE) DENOM).
  46. This is handy for scaling a position on a scroll bar into real units,
  47. like buffer positions.  If SCROLL-BAR-POS is the (PORTION . WHOLE) pair
  48. from a scroll bar event, then (scroll-bar-scale SCROLL-BAR-POS
  49. \(buffer-size)) is the position in the current buffer corresponding to
  50. that scroll bar position."
  51.   ;; We multiply before we divide to maintain precision.
  52.   ;; We use floating point because the product of a large buffer size
  53.   ;; with a large scroll bar portion can easily overflow a lisp int.
  54.   (truncate (/ (* (float (car num-denom)) whole) (cdr num-denom))))
  55.  
  56.  
  57. ;;;; Helpful functions for enabling and disabling scroll bars.
  58.  
  59. (defun scroll-bar-mode (flag)
  60.   "Toggle display of vertical scroll bars on each frame.
  61. This command applies to all frames that exist and frames to be
  62. created in the future.
  63. With a numeric argument, if the argument is negative,
  64. turn off scroll bars; otherwise, turn on scroll bars."
  65.   (interactive "P")
  66.   (if flag (setq flag (prefix-numeric-value flag)))
  67.  
  68.   ;; Obtain the current setting by looking at default-frame-alist.
  69.   (let ((scroll-bar-mode
  70.      (let ((assq (assq 'vertical-scroll-bars default-frame-alist)))
  71.        (if assq (cdr assq) t))))
  72.  
  73.     ;; Tweedle it according to the argument.
  74.     (setq scroll-bar-mode (if (null flag) (not scroll-bar-mode)
  75.                 (or (not (numberp flag)) (>= flag 0))))
  76.  
  77.     ;; Apply it to default-frame-alist.
  78.     (mapcar
  79.      (function
  80.       (lambda (param-name)
  81.     (let ((parameter (assq param-name default-frame-alist)))
  82.       (if (consp parameter)
  83.           (setcdr parameter scroll-bar-mode)
  84.         (setq default-frame-alist
  85.           (cons (cons param-name scroll-bar-mode)
  86.             default-frame-alist))))))
  87.      '(vertical-scroll-bars horizontal-scroll-bars))
  88.  
  89.     ;; Apply it to existing frames.
  90.     (let ((frames (frame-list)))
  91.       (while frames
  92.     (modify-frame-parameters
  93.      (car frames)
  94.      (list (cons 'vertical-scroll-bars scroll-bar-mode)
  95.            (cons 'horizontal-scroll-bars scroll-bar-mode)))
  96.     (setq frames (cdr frames))))))
  97.  
  98. ;;;; Buffer navigation using the scroll bar.
  99.  
  100. ;;; This was used for up-events on button 2, but no longer.
  101. (defun scroll-bar-set-window-start (event)
  102.   "Set the window start according to where the scroll bar is dragged.
  103. EVENT should be a scroll bar click or drag event."
  104.   (interactive "e")
  105.   (let* ((end-position (event-end event))
  106.      (window (nth 0 end-position))
  107.      (portion-whole (nth 2 end-position)))
  108.     (save-excursion
  109.       (set-buffer (window-buffer window))
  110.       (save-excursion
  111.     (goto-char (+ (point-min)
  112.               (scroll-bar-scale portion-whole
  113.                     (- (point-max) (point-min)))))
  114.     (beginning-of-line)
  115.     (set-window-start window (point))))))
  116.  
  117. (defun scroll-bar-drag-position (portion-whole)
  118.   "Calculate new window start for drag event."
  119.   (save-excursion
  120.     (goto-char (+ (point-min)
  121.           (scroll-bar-scale portion-whole
  122.                     (- (point-max) (point-min)))))
  123.     (beginning-of-line)
  124.     (point)))
  125.  
  126. (defun scroll-bar-maybe-set-window-start (event)
  127.   "Set the window start according to where the scroll bar is dragged.
  128. Only change window start if the new start is substantially different.
  129. EVENT should be a scroll bar click or drag event."
  130.   (interactive "e")
  131.   (let* ((end-position (event-end event))
  132.      (window (nth 0 end-position))
  133.      (portion-whole (nth 2 end-position))
  134.      (next-portion-whole (cons (1+ (car portion-whole))
  135.                    (cdr portion-whole)))
  136.      portion-start
  137.      next-portion-start
  138.      (current-start (window-start window)))
  139.     (save-excursion
  140.       (set-buffer (window-buffer window))
  141.       (setq portion-start (scroll-bar-drag-position portion-whole))
  142.       (setq next-portion-start (max
  143.                 (scroll-bar-drag-position next-portion-whole)
  144.                 (1+ portion-start)))
  145.       (if (or (> current-start next-portion-start)
  146.           (< current-start portion-start))
  147.       (set-window-start window portion-start)
  148.     ;; Always set window start, to ensure scroll bar position is updated.
  149.     (set-window-start window current-start)))))
  150.  
  151. ;; Scroll the window to the proper position for EVENT.
  152. (defun scroll-bar-drag-1 (event)
  153.   (let* ((start-position (event-start event))
  154.      (window (nth 0 start-position))
  155.      (portion-whole (nth 2 start-position)))
  156.     (save-excursion
  157.       (set-buffer (window-buffer window))
  158.       ;; Calculate position relative to the accessible part of the buffer.
  159.       (goto-char (+ (point-min)
  160.             (scroll-bar-scale portion-whole
  161.                       (- (point-max) (point-min)))))
  162.       (beginning-of-line)
  163.       (set-window-start window (point)))))
  164.  
  165. (defun scroll-bar-drag (event)
  166.   "Scroll the window by dragging the scroll bar slider.
  167. If you click outside the slider, the window scrolls to bring the slider there."
  168.   (interactive "e")
  169.   (let* (done
  170.      (echo-keystrokes 0))
  171.     (or point-before-scroll
  172.     (setq point-before-scroll (point)))
  173.     ;; Our scrolling can move point; don't let that clear point-before-scroll.
  174.     (let (point-before-scroll)
  175.       (scroll-bar-drag-1 event)
  176.       (track-mouse
  177.     (while (not done)
  178.       (setq event (read-event))
  179.       (if (eq (car-safe event) 'mouse-movement)
  180.           (setq event (read-event)))
  181.       (cond ((eq (car-safe event) 'scroll-bar-movement)
  182.          (scroll-bar-drag-1 event))
  183.         (t
  184.          ;; Exit when we get the drag event; ignore that event.
  185.          (setq done t)))))
  186.       (sit-for 0))))
  187.  
  188. (defun scroll-bar-scroll-down (event)
  189.   "Scroll the window's top line down to the location of the scroll bar click.
  190. EVENT should be a scroll bar click."
  191.   (interactive "e")
  192.   (let ((old-selected-window (selected-window)))
  193.     (unwind-protect
  194.     (progn
  195.       (let* ((end-position (event-end event))
  196.          (window (nth 0 end-position))
  197.          (portion-whole (nth 2 end-position)))
  198.         (let (point-before-scroll)
  199.           (select-window window))
  200.         (or point-before-scroll
  201.         (setq point-before-scroll (point)))
  202.         (let (point-before-scroll)
  203.           (scroll-down
  204.            (scroll-bar-scale portion-whole (1- (window-height)))))))
  205.       (select-window old-selected-window))))
  206.  
  207. (defun scroll-bar-scroll-up (event)
  208.   "Scroll the line next to the scroll bar click to the top of the window.
  209. EVENT should be a scroll bar click."
  210.   (interactive "e")
  211.   (let ((old-selected-window (selected-window)))
  212.     (unwind-protect
  213.     (progn
  214.       (let* ((end-position (event-end event))
  215.          (window (nth 0 end-position))
  216.          (portion-whole (nth 2 end-position)))
  217.         (let (point-before-scroll)
  218.           (select-window window))
  219.         (or point-before-scroll
  220.         (setq point-before-scroll (point)))
  221.         (let (point-before-scroll)
  222.           (scroll-up
  223.